float red = 1.0;
float green = 1.0;
float blue = 1.0;

float4 main() : COLOR0
{
    float4 sc = {red, green, blue, 1.0f};
    return sc;
}

technique
{
    pass
    {
        PixelShader = compile ps_2_0 main();
    }
}
